﻿@charset "utf-8";
/* CSS Document */
html, body {
    width: 100%;
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
}
/*匹配页面上所有元素*/
body {
    font-size: 13px;
    color: #333;
    font-family: "微软雅黑";
}

li, ul, input {
    list-style: none;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #333;
}

img {
    outline: none;
    border: none;
}
/************************头部样式***************************/
.header {
    width: 1200px;
    height: 98px;
    margin: auto;
}

    .header p {
        font-size: 34px;
        color: #333;
        line-height: 98px;
        padding-left: 50px;
        padding-top: 20px;
    }
/************************内容样式***************************/
.wrapper {
    width: 100%;
    background: url(../images/bg.jpg) no-repeat center;
}

@media screen and (min-width:1600px) {
    .content {
        height: 590px;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1600px) {
    .content {
        height: 500px;
    }
}

@media screen and (max-width:1366px) {
    .content {
        height: 400px;
    }
}

.content {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

    .content img {
        position: absolute;
        left: 40px;
        top: 30%;
    }

    .content .login-con {
        width: 300px;
        height: 280px;
        border-radius: 6px;
        background: #fff;
        padding: 30px;
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -170px;
    }

        .content .login-con h2 {
            font-size: 26px;
            font-weight: bold;
            border-bottom: 3px solid #0d9ef1;
            padding-bottom: 4px;
            display: inline-block;
        }

.login_wz {
    color: #f14d0d;
}

.login-con .login-int-bar ul {
    margin-top: 25px;
}

    .login-con .login-int-bar ul li {
        margin-top: 15px;
    }

.login-con .login-int-bar input {
    width: 260px;
    padding: 0 20px 0 20px;
    height: 48px;
    border: 1px solid #d7d7d7;
    border-radius: 3px;
    outline: none;
}

.login-con .login-int-bar li:nth-of-type(1) input {
    background: url( ../images/name-icon.png) no-repeat 260px center;
}

.login-con .login-int-bar li:nth-of-type(2) input {
    background: url( ../images/password-icon.png) no-repeat 260px center;
}

.login-con .login-int-bar input:focus {
    border: 1px solid #65b2ff;
    box-shadow: inset 0 0 3px #65b2ff;
}

.login-con .login-int-bar li:nth-of-type(1) input:focus {
    background: url( ../images/name-icon-1.png) no-repeat 260px center;
}

.login-con .login-int-bar li:nth-of-type(2) input:focus {
    background: url( ../images/password-icon-1.png) no-repeat 260px center;
}

.login-con .login-int-bar li:nth-of-type(3) input {
    width: 150px;
    padding: 0 13px;
}

.login-con .login-int-bar li .code-img {
    float: right;
    width: 125px;
    height: 50px;
    cursor: pointer;
}

.login-con .login-int-bar li .login-btn {
    width: 100%;
    height: 48px;
    border: 0;
    background: #5ec1fa;
    box-shadow: inset 0 0px 0 50px #0d9ef1;
    border-radius: 4px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: .2s ease-in-out;
}

    .login-con .login-int-bar li .login-btn:hover {
        box-shadow: inset 0 0px 0 0px #0d9ef1;
        color: #fff;
    }

.login-con .login-int-bar li .login-btn-disable {
    width: 100%;
    height: 48px;
    border: 0;
    background: #a4a7a9;
    box-shadow: inset 0 0px 0 50px #707070;
    border-radius: 4px;
    font-size: 18px;
    color: #fff;
    cursor: not-allowed;
    position: relative;
    transition: .2s ease-in-out;
    
}

    .login-con .login-int-bar li .login-btn-disable:hover {
        box-shadow: inset 0 0px 0 0px #707070;
        color: #fff;
    }


/************************底部样式***************************/
.foot {
    padding-top: 10px;
    font-size: 14px;
    height: 80px;
    line-height: 30px;
    margin: auto;
    text-align: center;
    color: #666;
}
